home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 60265 / 60265.xpi / chrome / content / toolbarOverlay.xul < prev    next >
Extensible Markup Language  |  2010-02-11  |  3KB  |  54 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3.     Saved Password Editor, extension for Firefox 3.0+
  4.     Copyright (C) 2010  Daniel Dawson <ddawson@icehouse.net>
  5.  
  6.     This program is free software: you can redistribute it and/or modify
  7.     it under the terms of the GNU General Public License as published by
  8.     the Free Software Foundation, either version 3 of the License, or
  9.     (at your option) any later version.
  10.  
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU General Public License for more details.
  15.  
  16.     You should have received a copy of the GNU General Public License
  17.     along with this program.  If not, see <http://www.gnu.org/licenses/>.
  18. -->
  19.  
  20. <!DOCTYPE overlay SYSTEM "chrome://savedpasswordeditor/locale/spe.dtd">
  21.  
  22. <overlay xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  23.   <script type="text/javascript"
  24.           src="chrome://savedpasswordeditor/content/openSP.js"/>
  25.   <toolbarpalette id="BrowserToolbarPalette">
  26.     <toolbarbutton id="savedpasswordeditor-button"
  27.                    class="toolbarbutton-1 chromeclass-toolbar-additional"
  28.                    label="&savedpasswords.label;"
  29.                    tooltiptext="&savedpasswords.tooltip;"
  30.                    oncommand="speOpenSavedPasswords();"/>
  31.   </toolbarpalette>
  32.   <toolbarpalette id="MailToolbarPalette">
  33.     <toolbarbutton id="savedpasswordeditor-button"
  34.                    class="toolbarbutton-1 chromeclass-toolbar-additional"
  35.                    label="&savedpasswords.label;"
  36.                    tooltiptext="&savedpasswords.tooltip;"
  37.                    oncommand="speOpenSavedPasswords();"/>
  38.   </toolbarpalette>
  39.   <toolbarpalette id="MsgComposeToolbarPalette">
  40.     <toolbarbutton id="savedpasswordeditor-button"
  41.                    class="toolbarbutton-1 chromeclass-toolbar-additional"
  42.                    label="&savedpasswords.label;"
  43.                    tooltiptext="&savedpasswords.tooltip;"
  44.                    oncommand="speOpenSavedPasswords();"/>
  45.   </toolbarpalette>
  46.   <toolbarpalette id="calendarToolbarPalette">
  47.     <toolbarbutton id="savedpasswordeditor-button"
  48.                    class="cal-toolbarbutton-1 chromeclass-toolbar-additional"
  49.                    label="&savedpasswords.label;"
  50.                    tooltiptext="&savedpasswords.tooltip;"
  51.                    oncommand="speOpenSavedPasswords();"/>
  52.   </toolbarpalette>
  53. </overlay>
  54.